home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Programming / XMPlayer-library / include / Asm / libraries / xmplayer.i < prev   
Encoding:
Text File  |  2001-04-17  |  1.4 KB  |  70 lines

  1.     IFND LIBRARIES_XMPLAYER_I
  2. LIBRARIES_XMPLAYER_I EQU 1
  3. **
  4. **    $Filename: libraries/xmplayer.i $
  5. **    $Release: 1.0a $
  6. **    $Revision: 1.0a $
  7. **
  8. **    xmplayer.library definitions
  9. **
  10. **    Library coded by CruST / Amnesty^.humbug.
  11. **    Released by .humbug. 17.04.2001
  12. **    
  13. **    Library based on the PS3M source 
  14. **    Copyright (c) Jarno Paananen a.k.a. Guru / S2 1994-96.
  15. **
  16.  
  17.     IFND LIBRARIES_XMPLATER_LIB_I
  18.     include "libraries/xmplayer_lib.i"
  19.     ENDC
  20.  
  21.     IFND LIBRARIES_EXEC_TYPES_I
  22.     include "exec/types.i"
  23.     ENDC
  24.  
  25. XMPLAYERNAME    MACRO
  26.     dc.b    "xmplayer.library",0
  27.    ENDM
  28.  
  29. XMPLAYERVERSION        equ    1
  30.  
  31. ;======================================================================
  32. ; XMPlayer Structure
  33. ;======================================================================
  34.  
  35.     STRUCTURE    XMPlayerInfo,0
  36.  
  37.     APTR    XMPl_Cont
  38.     LONG    XMPl_Mixtype
  39.     LONG    XMPl_Mixfreq
  40.     LONG    XMPl_Vboost
  41.     APTR    XMPl_PrName
  42.     LONG    XMPl_PrPri
  43.  
  44.     LABEL    XMPlayerInfo_SIZE
  45.  
  46. ;======================================================================
  47. ; XMPlayerPos Structure
  48. ;======================================================================
  49.  
  50.     STRUCTURE    XMPlayerPos,0
  51.  
  52.     LONG    XMPl_ModPos
  53.     LONG    XMPl_PattPos
  54.  
  55.     LABEL    XMPlayerPos_SIZE
  56.  
  57.  
  58. ;======================================================================
  59. ; XM MIX Types
  60. ;======================================================================
  61.  
  62. XM_MONO        equ    0
  63. XM_STEREO    equ    1
  64. XM_SURROUND    equ    2
  65. XM_REALSURR    equ    3
  66. XM_STEREO14    equ    4
  67.  
  68.  
  69.    ENDC ; LIBRARIES_XMPLAYER_I
  70.